Student Learning and Outcomes API icon

Student Learning and Outcomes API

(0 reviews)

Retrieve Delivery Plans

This operation retrieves offering delivery plan data from the StudentExperienceConnectedDelivery database by performing a get operation on /delivery-plans?lastUpdateDate=2022-01-01T12:00:00

A query parameter is needed to specify which records to retrieved based on Modified date. All records from that date will be retrieved.

This endpoint uses pagination to present results. Example URL is;

- /v1/learning/delivery-plans?lastUpdateDate=2022-01-02T12:00:00&page[limit]=10&page[offset]=20

The response contains URL fragments for the next and previous pages as below;

    {
"links": {
    "prev": "/v1/learning/delivery-plans?lastUpdateDate=2022-01-02T12:00:00&page[limit]=10&page[offset]=10",
    "next": "/v1/learning/delivery-plans?lastUpdateDate=2022-01-02T12:00:00&page[limit]=10&page[offset]=30"
},
"meta": {
    "totalResults": 42
},
"data": [
    {
        "type": "delivery-plan",
        "id": 115023,
        "attributes": {
            "courseId": "900-81345V01",

Reviews